home *** CD-ROM | disk | FTP | other *** search
/ Precision Software Appli…tions Silver Collection 1 / Precision Software Applications Silver Collection Volume One (PSM) (1993).iso / games / egavga / bricks01.exe / LOCAL.H < prev    next >
C/C++ Source or Header  |  1989-08-07  |  381b  |  34 lines

  1. /*
  2.  * local.h -- local header for common defs
  3.  */
  4. #ifndef    LOCAL_H
  5.  
  6. #define LOCAL_H
  7.  
  8. #ifndef EOF
  9. #define EOF (-1)
  10. #endif
  11.  
  12. #ifndef TRUE
  13. #define TRUE  1
  14. #define FALSE 0
  15. #endif
  16.  
  17. #ifndef    OK
  18. #define    OK    1
  19. #define    BAD    0
  20. #endif
  21.  
  22. #ifndef bool
  23. #define bool int
  24. #endif
  25.  
  26. #ifndef BOOLEAN
  27. #define BOOLEAN int
  28. #endif
  29.  
  30. #endif
  31.  
  32. /*       end of local.h so far    */
  33.  
  34.